home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / contrib / sblaster / makefile < prev    next >
Makefile  |  1993-11-22  |  196b  |  12 lines

  1. sb: sb.c sb.h makefile
  2.     gcc -Wall sb.c -o sb -lpc
  3.     coff2exe sb
  4.  
  5. proto:
  6.     $(RM) -f proto.h
  7.     touch proto.h
  8.     gcc -E sb.c > sb.cp
  9.     cproto -f 4 -m _PROTO_ -d -p -e sb.cp > proto.h
  10.     rm sb.cp
  11.  
  12.